home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / tclMotif-1.4 / programs / prog89 < prev    next >
Encoding:
Text File  |  1995-06-29  |  359 b   |  19 lines

  1. # check button motion 
  2.  
  3. proc track_motion {event} {
  4.   set type [xEvent $event T]
  5.   puts stdout "Event type: $type"
  6.   set x [xEvent $event x]
  7.   set y [xEvent $event y]
  8.   puts stdout "moved to $x $y"
  9. }
  10.  
  11. xtAppInitialize -class Program
  12.  
  13. xmPushButton .fred managed
  14.  
  15. .fred setValues -translations "<Motion>: action(track_motion %event)"
  16. . realizeWidget
  17.  
  18. . mainLoop
  19.